home *** CD-ROM | disk | FTP | other *** search
- global gMoodJ, gStateJ, gAnswersJ, gWin, gJR, gTM, gMS
-
- on startMovie
- set gAnswersJ to 1
- end
-
- on PickMood
- set gMoodJ to random(3)
- if gMoodJ = 1 then
- play frame "MoodBad"
- else
- nothing()
- end if
- if gMoodJ = 2 then
- play frame "MoodTired"
- else
- nothing()
- end if
- if gMoodJ = 3 then
- play frame "MoodHorny"
- else
- nothing()
- end if
- end
-
- on stateOfBeing
- set gStateJ to 3
- set the castNum of sprite 14 to gStateJ
- updateStage()
- end
-
- on Aanswer i, y
- set myList to list("HT4.AIF", "LT.AIF", "NC1.AIF", "R1.AIF", "SS1.AIF", "ST1.AIF", "WC1.AIF", "T1.AIF", "UH1.AIF")
- set z to random(9)
- set mySound to getAt(myList, z)
- if gAnswersJ = i then
- set gStateJ to gStateJ + 1
- if gStateJ > 6 then
- set gStateJ to 6
- end if
- set the castNum of sprite 14 to gStateJ
- updateStage()
- set gAnswersJ to gAnswersJ + 1
- if y = 9 then
- play frame the frame + 4
- else
- play frame the frame + 1
- end if
- end if
- if gAnswersJ <> i then
- set gStateJ to gStateJ - 1
- if gStateJ = 0 then
- play frame "fin"
- else
- puppetSound(mySound)
- set the castNum of sprite 14 to gStateJ
- play frame the frame
- end if
- end if
- end
-
- on winner
- set gWin to gWin + 1
- play movie "Virtual Sex:MAIN"
- end
-
- on clearTheBitches
- set gJR to 0
- set gTM to 0
- set gMS to 0
- play movie "Virtual Sex:MAIN"
- end
-